home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
dev
/
gui
/
muibuilderv11.lha
/
muibuilder
/
mb
/
c
/
locale
/
DMakeFile
next >
Wrap
Makefile
|
1994-03-24
|
745b
|
34 lines
# DMakefile
# for MUIBuilder-generated Code
# by Christian Brandel
# specify the directory of the code here:
OD =
# linked libraries
LIBS = -lmui -lamiga30s -lc
# destination of the executable
DEST = Click Characters
# sources that are compiled seperatly and ...
SRCS = SmallMain.c Small_cat.c Small_Example.c Small_Example_cat.c
# ...are all linked together later
OBJS = $(SRCS:"*.c":"$(OD)*.o")
# compiler options (do not change)
OPTS-GLOBAL = -ms -mRR -mi -3.0
# compiler options (change according to your preferences)
OPTS-LOCAL = -I$(OD) -//
all: $(DEST)
$(DEST) : $(OBJS)
dcc $(OPTS-GLOBAL) $(OPTS-LOCAL) $(OBJS:"$(OD)*.o":"*.o") -o%(left) $(LIBS)
$(OBJS) : $(SRCS)
dcc %(right) -o %(left) $(OPTS-GLOBAL) $(OPTS-LOCAL) -c